Migo商城2.0 Nginx的安装与使用 三

Migo商城2.0 Nginx的安装与使用 三

因这方面的网上的文档很多,在此就不过多仔细说明了,因操作过程一致,这里拿nginx-1.9.12来做示例

Nginx的特点

1、Nginx 专为性能优化而开发,性能是其最重要的考量,实现上非常注重效率 。它支
持内核 Poll 模型,能经受高负载的考验,有报告表明能支持高达 50,000 个并发连接数

2、Nginx 具有很高的稳定性,Nginx 采取了分阶段资源分配技术,使得它的 CPU 与
内存占用率非常低。

3、Nginx 代码质量非常高,代码很规范,手法成熟,模块扩展也很容易。

4、Nginx 还可以实现无缓存的反向代理加速,简单的负载均衡和容错。

Nginx的应用场景

1、http服务器。Nginx是一个http服务可以独立提供http服务。可以做网页静态服务器。

2、虚拟主机。可以实现在一台服务器虚拟出多个网站。例如个人网站使用的虚拟主机。

3、反向代理,负载均衡。当网站的访问量达到一定程度后,单台服务器不能满足用户的请求时,需要用多台服务器集群可以使用

nginx做反向代理。并且多台服务器可以平均分担负载,不会因为某台服务器负载高宕机而某台服务器闲置的情况

在下载源码包并编译之前,先安装好开发环境:

1
2
3
[root@code ~]# yum install pcre-devel openssl-devel -y 使nginx支持正则表达式及https加密

[root@code ~]# yum groupinstall “Desktop Platform Development” “Development tools” -y 开发包

具体的nginx支持的库还是专门说下算了:

nginx是C语言开发,建议在linux上运行

gcc

安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install gcc-c++ 

PCRE

PCRE(PerlCompatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre库。

yuminstall -y pcre pcre-devel

注:pcre-devel是使用pcre开发的一个二次开发库。nginx也需要此库。

zlib

zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。

yuminstall -y zlib zlib-devel

openssl

OpenSSL是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。

nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。

yuminstall -y openssl openssl-devel

编译安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[root@code ~]# groupadd -r nginx 创建系统组nginx

[root@code ~]# useradd -g nginx -s /sbin/nologin -r nginx 创建用户nginx并添加进nginx组

[root@code ~]# yum install wget -y 安装wget工具

[root@code ~]# wget http://nginx.org/download/nginx-1.9.12.tar.gz 下载源码包到本地

[root@code ~]# tar xf nginx-1.9.12.tar.gz 解压源码包

[root@code ~]# cd nginx-1.9.12

[root@code nginx-1.9.12]# mkdir -pv /data/logs/nginx 创建ngnix日志目录

[root@code nginx-1.9.12]# ./configure \
--prefix=/usr/local/nginx \
--user=nginx --group=nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--with-http_ssl_module \
--with-http_image_filter_module \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi \
--with-http_gunzip_module \
--with-http_stub_status_module \
--http-log-path=/data/logs/nginx/access.log \
--error-log-path=/data/logs/nginx/error.log 配置出编译文件,其中的编译选项我会在文章后面列出

[root@code nginx-1.9.12]# make & make install 编译并安装

注意:上边将临时文件目录指定为/var/temp/nginx,需要在/var下创建temp及nginx目录

下面是编译后生成的所有文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/usr/local/nginx/
├── conf
│ ├── fastcgi.conf
│ ├── fastcgi.conf.default
│ ├── fastcgi_params
│ ├── fastcgi_params.default
│ ├── koi-utf
│ ├── koi-win
│ ├── mime.types
│ ├── mime.types.default
│ ├── nginx.conf 主配置文件
│ ├── nginx.conf.default
│ ├── scgi_params
│ ├── scgi_params.default
│ ├── uwsgi_params
│ ├── uwsgi_params.default
│ └── win-utf
├── html 网站根目录
│ ├── 50x.html
│ └── index.html
├── logs
└── sbin
   └── nginx nginx主程序

修改Nginx的主页文件(为了测试): vim /usr/local/nginx/html/index.html

修改内容保存:

<h1>Welcome!</h1>
<h2>This is Nginx site</h2>

启动nginx服务

[root@code ~]# /usr/local/nginx/sbin/nginx 没有报错就是启动正常
[root@code ~]# ss -tnl | grep “80” 查看80端口是否已经启动
LISTEN   0   128   :80   :*  ##80端口已经启动

测试页面是否能正常访问

1
2
3
4
5
[root@code ~]# curl http://192.168.10.1

<h1>Welcome!</h1>

<h2>This is Nginx site</h2>

输出以上信息表示能够正常访问

Nginx的配置

  1. 配置http服务器,配置虚拟机

    a) 通过端口区分,一个nginx可以同时监听多个端口

    b) 通过ip区分,可以在一台服务器上绑定多个ip来根据ip区分。(很少使用)

    c) 通过域名区分,最常见的方式。

  2. 配置反向代理、负载均衡

    需要修改的配置文件:nginx.conf

    http节点下一个server节点就是一个虚拟机

    关于域名这个东西这里就不解释了,不懂可以谷歌百度的

    这里把图中的反向代理,负载均衡再多说两句的,其实图里都讲到了

    作为反向代理服务器时,nginx只是转发请求。

    可以配置多个tomcat,每个tomcat对应不同的域名

    负载均衡用图来表示下

    另附平常用的比较多的命令

    进入sbin目录 命令 cd /usr/local/nginx/sbin

    Nginx的关闭:

    [root@localhost sbin]# ./nginx -s stop

    Nginx重新加载配置文件:

    [root@localhost sbin]# ./nginx -s reload

    验证配置文件是否正确的命令:
    a、方法一
    /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
    b、进入sbin目录 命令 cd /usr/local/nginx/sbin
    验证命令为 ./nginx -t
    出现 XXXXXX is ok 表示配置文件没问题

    到此,nginx结束,不过,平时可以用windows下的nginx做开发的,简单易用

    具体要用的东西,解压文件到一个全英文的路径下比如d:/aaa/

    三个命令:(在 CMD 中执行)

    启动:start nginx.exe

    停止:nginx.exe -s stop

    重新加载:nginx.exe -s reload

    只有2个进程nginx才算是真正的启动成功:

您的支持将鼓励我继续创作!